From 1f88ad531844b0d191ccc76fe97d9f2b813aca7a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juan=20Hern=C3=A1ndez?= Date: Sat, 10 Sep 2016 17:25:23 -0400 Subject: [PATCH] Properly close dep_feature_in_cmd_line test. It was including the test all_features_flag_enables_all_features inside its function body. --- tests/features.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/features.rs b/tests/features.rs index a6921de38..449e1f9c8 100644 --- a/tests/features.rs +++ b/tests/features.rs @@ -960,6 +960,7 @@ fn dep_feature_in_cmd_line() { execs().with_status(101).with_stderr("\ [ERROR] feature names may not contain slashes: `bar/some-feat` ")); +} #[test] fn all_features_flag_enables_all_features() { @@ -1004,4 +1005,3 @@ fn all_features_flag_enables_all_features() { assert_that(p.cargo_process("build").arg("--all-features"), execs().with_status(0)); } -} -- 2.30.2